| Server IP : 14.225.204.176 / Your IP : 216.73.216.252 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 : |
-- 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} — 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 & 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 & 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 & 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 & 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 & 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 & 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 & 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 & 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 & 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 & Fitness Equipment – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 & Beauty – 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 – Health & 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – Health & 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 – 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 – 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 & Moving Company – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – Health & 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 & Cat Food Delivery – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – Health & 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – Health & 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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’s Optometrist – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – App Service – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – Thank You Page – 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 – 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 – Thank You Page – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – Chef’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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – B&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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 'value')\";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&loadchunk_0=jquery-core,jquery-migrate,utils,wp-hooks&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&loadchunk_0=jquery-core,jquery-migrate,utils,wp-hooks&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 'slidestoshow')\";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 "editor_post_id"\";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 'localized')\";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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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=\\\"{"background_background":"classic"}\\\">\\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=\\\"{"stretch_section":"section-stretched","background_background":"classic"}\\\">\\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 & 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 & 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\":\"